home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ucturbo2 / testeqp.c < prev    next >
Text File  |  1987-05-23  |  479b  |  13 lines

  1. main()
  2. {
  3.   cls();
  4.   beepsp();
  5.   printf("\n\n\nThis program will read various information concerning your\n");
  6.   printf("computer and display it on the screen using functions from\n");
  7.   printf("the Unicorn #1 library.\n\n\n\n\n");
  8.  
  9.   printf("The equipment status is %d decimal or %x hex\n\n", equip(), equip());
  10.   printf("There are %d Kilobytes of memory installed\n", memsize());
  11.   printf("The model code number is %d decimal or %x hex\n",getctype(),getctype());
  12. }
  13.